home *** CD-ROM | disk | FTP | other *** search
/ World of Video / World of Video.iso / gfxprograms / 3dprograms / shelly / shelly.h < prev    next >
C/C++ Source or Header  |  1995-02-13  |  329b  |  23 lines

  1. /* Header for Shelly - the famous ShellShapeGenerator */
  2.  
  3. #define POV 1
  4. #define RPL 2
  5. #define T3D 3
  6.  
  7. struct punkt 
  8. {
  9.  struct punkt *next;
  10.  double x,y,z;
  11. };
  12.  
  13.  
  14. struct ShellyArguments
  15. {
  16.  double alpha,beta,phi,my,omega,omin,omax,smin,smax,A,a,b,P,W1,W2,N,L;
  17.  double od, sd;
  18.  int output;
  19. };
  20.  
  21. #define pi 3.141592654
  22. #define laenge 255
  23.